Skip to content

feat(paradedb): expose logical replication slot failover config#198

Merged
philippemnoel merged 5 commits into
devfrom
feat/replication-slots-failover
May 18, 2026
Merged

feat(paradedb): expose logical replication slot failover config#198
philippemnoel merged 5 commits into
devfrom
feat/replication-slots-failover

Conversation

@philippemnoel
Copy link
Copy Markdown
Member

@philippemnoel philippemnoel commented May 13, 2026

What

  • Exposes CloudNativePG Cluster.spec.replicationSlots on the ParadeDB chart through cluster.replicationSlots.
  • Documents the logical decoding slot failover settings required for CDC tools such as Artie and Debezium.
  • Updates the schema, README, and non-default configuration fixture to render highAvailability.synchronizeLogicalDecoding: true with the required PostgreSQL parameters.

Why

Artie creates and consumes a logical replication slot on the current primary. Before this change, a CNPG switchover or failover could leave that logical slot behind on the old primary, which then becomes a replica. CDC stops reconnecting cleanly and the abandoned slot can continue retaining WAL.

CloudNativePG can coordinate logical decoding slot synchronization across HA instances, but chart users need access to spec.replicationSlots and must enable the PostgreSQL and slot-level failover settings.

Requirements for Artie-style CDC failover

  • CloudNativePG operator and CRDs 1.27+.
  • PostgreSQL 17+ for native failover slots. PostgreSQL 18 is covered.
  • Set cluster.replicationSlots.highAvailability.synchronizeLogicalDecoding: true.
  • Set cluster.postgresql.parameters.hot_standby_feedback: "on".
  • Set cluster.postgresql.parameters.sync_replication_slots: "on".
  • Ensure the CDC client creates or alters its logical slot with failover = true; CNPG cannot move a normal non-failover logical slot.
  • Before planned failovers, verify the target standby has the logical slot with synced = true, temporary = false, and invalidation_reason IS NULL.

Tests

  • helm template test charts/paradedb --show-only templates/cluster.yaml
  • helm template test charts/paradedb --show-only templates/cluster.yaml --values charts/paradedb/test/paradedb-cluster-configuration/01-non_default_configuration_cluster.yaml
  • helm lint charts/paradedb

Surfaces CNPG's replicationSlots field so chart users can enable
synchronization of user-created logical replication slots between the
primary and standbys. With PostgreSQL 17+ failover slots, this lets CDC
consumers (e.g. Artie, Debezium) survive a CNPG failover without
losing the slot.

The block is omitted entirely when the value is empty, so existing
deployments are unaffected.
Extends the existing non-default-configuration chainsaw test with a
replicationSlots block (highAvailability + synchronizeReplicas) and
asserts it appears verbatim on the rendered CNPG Cluster.
The pooler test's 20s assert timeout was too tight — the Deployment's
status.readyReplicas occasionally hasn't been populated by kube-controller
within that window, causing flaky failures unrelated to the chart change
under test. Peer tests use 1m–3m (paradedb-enterprise: 2m, replica: 3m).
Bump cleanup to 1m for consistency with the same peers.
@philippemnoel philippemnoel changed the title feat(paradedb): expose replicationSlots on the CNPG Cluster feat(paradedb): expose logical replication slot failover config May 17, 2026
@philippemnoel philippemnoel changed the base branch from main to dev May 18, 2026 04:16
@philippemnoel philippemnoel merged commit ff43b99 into dev May 18, 2026
25 of 26 checks passed
@philippemnoel philippemnoel deleted the feat/replication-slots-failover branch May 18, 2026 04:16
philippemnoel pushed a commit that referenced this pull request May 18, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

ci: AWS EKS LocalStack Tests (#14)

Co-authored-by: Itay Grudev <itay.grudev@essentim.com>
Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

Updated documentation workflows and cleanup (#18)

Revert "Add postgresql default to tests"

This reverts commit a9f340d.

Add repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Configure repository for ParadeDB (#15)

Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

chore: Create artifacthub-repo.yml (#20)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Put artifacthub-repo.yml in the right location

Bug Fix: Tests (#21)

Renamed chart to `paradedb-cluster` (#22)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

Rm .DS_Store

Remove extra HTML tag

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Remove repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Rename paradedb-cluster to paradedb (#28)

chore: Try with adding missing -cluster (#33)

chore: Final Cleanup (#34)

chore: Remove PostGIS and Timescale (#35)

Using the default UID/GID 999 from the postgres docker image (#26)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Update README and Schema (#37)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): pin sigstore/cosign-installer action to 4959ce0 (cloudnative-pg#403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rm pgvectorscale (#39)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Add GitHub Actions Workflow to check for typos (#40)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): update kyverno/action-install-chainsaw action to v0.2.11 (cloudnative-pg#410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rename the default database from app to paradedb (#41)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

docs: Clarify the docs (#42)

Update Depot

Revert "Update Depot"

This reverts commit cb85b81.

feat: Add `pg_cron` and Postgis (#44)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Use the new 0.11.0 release (#47)

feat: Enable monitoring via Prometheus and Grafana (rebased) (#48)

Rm extra files

Remove duplicate block in README

Signed-off-by: Itay Grudev <itay@verito.digital>

Feat recovery.mode=import (#53)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to 0.12.0 (#56)

docs: Update docs following BYOC (#52)
Signed-off-by: Itay Grudev <itay@verito.digital>

ParadeDB Enterprise (#58)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Parallel test execution (#59)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to PG17 (#60)

Signed-off-by: Itay Grudev <itay@verito.digital>

Fixed cron database name (#61)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Hardcode version in ParadeDB tests (#66)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Use serviceAccountTemplate from values (#64)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Default to PG17 again (#69)

feat: Upgrade ParadeDB to 0.13.1 (#63)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Upgrade to 0.13.2 (#72)

Signed-off-by: Itay Grudev <itay@verito.digital>

test: Upgrade to 0.14.0 & Add test for replication (#75)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.14.1 (#76)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.15.0 (#80)

chore: Upgrade to 0.15.1 (#81)

feat: Add ScheduledBackups Test (#82)

Swap to Vars for DOCKERHUB_USERNAME

Cleanup

Make pg_analytics optional (#83)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Added pgDumpExtraOptions and pgRestoreExtraOptions (#84)

feat: Expose many externalClusters (#85)

Upgrade to 0.15.2

Upgrade to 0.15.3

Upgrade to 0.15.4

Fix rebase

:# This is a combination of 2 commits.

Upgrade to 0.15.5

fix: Fix CI (#87)

feat: Upgrade to 0.15.6 (#88)

Remove pg_parquet

Rm tar

feat: Release 0.15.7 (#89)

feat: Upgrade to 0.15.8 (#91)

Upgrade to 0.15.9

Update Slack Community invite link

feat: Phil/0.15.11 (#93)

feat: Upgrade to 0.15.12 (#95)

Upgrade missing one

Upgrade to 0.15.13

fix: incorrectly referring to version as appVersion (#99)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.15.14

Upgrade to 0.15.15

Upgrade to 0.15.16

Upgrade to 0.15.17

Adjust cluster to paradedb

Upgrade to 0.15.18

feat: Hot standy feedback (#106)

Co-authored-by: Itay Grudev <itay@verito.digital>

fix: Use encoded version of `hot_standby_feedback` (#108)

Co-authored-by: Itay Grudev <itay@verito.digital>

docs: Added Itay as a codeowner (#109)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Replica cluster support (#111)

Cleanup README

fix: missing Endpoint CA section in the replica origin objectStore section (#113)

feat: Also install extension when importing via source (#114)

chore: Adjust all tests to `paradedb` (#115)

feat: Release 0.15.19 (#116)

feat: predicate query tpl interpolation (#117)

Upgrade to 0.15.20

Upgrade to 0.15.21

Remove outdated EKS test

0.15.22

Upgrade to 0.15.25

feat: Database and extension management (#121)

fix: If the managed extension is pg_search always use the same version as the docker image (#124)

fix: Database CR name should not contain underscores (#125)

Upgrade to 0.16.0

Upgrade to 0.16.1

Upgrade to 0.16.2

Upgrade to 0.16.3

feat: Console pod for long-running tasks (#129)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2

Support PG15+

Swap to Apache-2.0 to match upstream

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Fix typos, stale license refs, and dead code (#170)

Signed-off-by: Philippe Noël <philippemnoel@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Deep cleanup of runbooks and chainsaw tests (#171)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Use correct values paths in origin credential templates (#173)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

test: Add regression test for origin credential templates in replica mode (#174)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Correct origin-creds templates and fourth cleanup pass (#172)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Bump ParadeDB version to 0.21.6 (#175)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Final cleanup pass across codebase (#176)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

feat( cluster ): Add pg_stat_statements metrics (#177)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

Upgrade to 0.21.7

Upgrade to 0.21.8

Upgrade to 0.21.10

chore(chart): low-priority cleanup and consistency fixes (#183)

fix(chart): critical reliability and templating fixes (#180)

fix(chart): high-priority alert templating and replica secret config (#181)

docs(chart): medium-priority accuracy and maintainability fixes (#182)

Rm cluster/ from bad rebase

Upgrade to 0.21.14

Upgrade to 0.22.0

chore(paradedb): bump version from 0.22.0 to 0.22.1

fix(monitoring): guard against nil pointer in pooler PodMonitor template (#185)

fix(monitoring): use template variable for Prometheus datasource UID (#186)

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

chore: Fix hardcoded dashboard panel (#187)

Upgrade to 0.22.3

Upgrade to 0.22.6

fix: resolve merge conflict markers in paradedb Chart.yaml (#189)

chore: bump ParadeDB to 0.23.0 (#190)

feat(monitoring): add pg_stat_activity long-running query instrumentation (#192)

chore: replace pg_cache_hit_ratio example with pg_database_size_bytes (#191)

fix(monitoring): name cluster PodMonitor after the cluster (#194)

fix(monitoring): exclude walsenders from long-running query metrics (#195)

ci: Use GitHub app instead of bot (#196)

ci: remove orphaned upstream workflows and fix gh CLI auth (#197)

feat(paradedb): expose logical replication slot failover config (#198)
philippemnoel pushed a commit that referenced this pull request May 18, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

ci: AWS EKS LocalStack Tests (#14)

Co-authored-by: Itay Grudev <itay.grudev@essentim.com>
Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

Updated documentation workflows and cleanup (#18)

Revert "Add postgresql default to tests"

This reverts commit a9f340d.

Add repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Configure repository for ParadeDB (#15)

Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

chore: Create artifacthub-repo.yml (#20)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Put artifacthub-repo.yml in the right location

Bug Fix: Tests (#21)

Renamed chart to `paradedb-cluster` (#22)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

Rm .DS_Store

Remove extra HTML tag

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Remove repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Rename paradedb-cluster to paradedb (#28)

chore: Try with adding missing -cluster (#33)

chore: Final Cleanup (#34)

chore: Remove PostGIS and Timescale (#35)

Using the default UID/GID 999 from the postgres docker image (#26)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Update README and Schema (#37)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): pin sigstore/cosign-installer action to 4959ce0 (cloudnative-pg#403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rm pgvectorscale (#39)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Add GitHub Actions Workflow to check for typos (#40)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): update kyverno/action-install-chainsaw action to v0.2.11 (cloudnative-pg#410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rename the default database from app to paradedb (#41)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

docs: Clarify the docs (#42)

Update Depot

Revert "Update Depot"

This reverts commit cb85b81.

feat: Add `pg_cron` and Postgis (#44)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Use the new 0.11.0 release (#47)

feat: Enable monitoring via Prometheus and Grafana (rebased) (#48)

Rm extra files

Remove duplicate block in README

Signed-off-by: Itay Grudev <itay@verito.digital>

Feat recovery.mode=import (#53)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to 0.12.0 (#56)

docs: Update docs following BYOC (#52)
Signed-off-by: Itay Grudev <itay@verito.digital>

ParadeDB Enterprise (#58)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Parallel test execution (#59)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to PG17 (#60)

Signed-off-by: Itay Grudev <itay@verito.digital>

Fixed cron database name (#61)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Hardcode version in ParadeDB tests (#66)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Use serviceAccountTemplate from values (#64)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Default to PG17 again (#69)

feat: Upgrade ParadeDB to 0.13.1 (#63)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Upgrade to 0.13.2 (#72)

Signed-off-by: Itay Grudev <itay@verito.digital>

test: Upgrade to 0.14.0 & Add test for replication (#75)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.14.1 (#76)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.15.0 (#80)

chore: Upgrade to 0.15.1 (#81)

feat: Add ScheduledBackups Test (#82)

Swap to Vars for DOCKERHUB_USERNAME

Cleanup

Make pg_analytics optional (#83)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Added pgDumpExtraOptions and pgRestoreExtraOptions (#84)

feat: Expose many externalClusters (#85)

Upgrade to 0.15.2

Upgrade to 0.15.3

Upgrade to 0.15.4

Fix rebase

:# This is a combination of 2 commits.

Upgrade to 0.15.5

fix: Fix CI (#87)

feat: Upgrade to 0.15.6 (#88)

Remove pg_parquet

Rm tar

feat: Release 0.15.7 (#89)

feat: Upgrade to 0.15.8 (#91)

Upgrade to 0.15.9

Update Slack Community invite link

feat: Phil/0.15.11 (#93)

feat: Upgrade to 0.15.12 (#95)

Upgrade missing one

Upgrade to 0.15.13

fix: incorrectly referring to version as appVersion (#99)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.15.14

Upgrade to 0.15.15

Upgrade to 0.15.16

Upgrade to 0.15.17

Adjust cluster to paradedb

Upgrade to 0.15.18

feat: Hot standy feedback (#106)

Co-authored-by: Itay Grudev <itay@verito.digital>

fix: Use encoded version of `hot_standby_feedback` (#108)

Co-authored-by: Itay Grudev <itay@verito.digital>

docs: Added Itay as a codeowner (#109)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Replica cluster support (#111)

Cleanup README

fix: missing Endpoint CA section in the replica origin objectStore section (#113)

feat: Also install extension when importing via source (#114)

chore: Adjust all tests to `paradedb` (#115)

feat: Release 0.15.19 (#116)

feat: predicate query tpl interpolation (#117)

Upgrade to 0.15.20

Upgrade to 0.15.21

Remove outdated EKS test

0.15.22

Upgrade to 0.15.25

feat: Database and extension management (#121)

fix: If the managed extension is pg_search always use the same version as the docker image (#124)

fix: Database CR name should not contain underscores (#125)

Upgrade to 0.16.0

Upgrade to 0.16.1

Upgrade to 0.16.2

Upgrade to 0.16.3

feat: Console pod for long-running tasks (#129)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2

Support PG15+

Swap to Apache-2.0 to match upstream

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Fix typos, stale license refs, and dead code (#170)

Signed-off-by: Philippe Noël <philippemnoel@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Deep cleanup of runbooks and chainsaw tests (#171)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Use correct values paths in origin credential templates (#173)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

test: Add regression test for origin credential templates in replica mode (#174)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Correct origin-creds templates and fourth cleanup pass (#172)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Bump ParadeDB version to 0.21.6 (#175)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Final cleanup pass across codebase (#176)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

feat( cluster ): Add pg_stat_statements metrics (#177)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

Upgrade to 0.21.7

Upgrade to 0.21.8

Upgrade to 0.21.10

chore(chart): low-priority cleanup and consistency fixes (#183)

fix(chart): critical reliability and templating fixes (#180)

fix(chart): high-priority alert templating and replica secret config (#181)

docs(chart): medium-priority accuracy and maintainability fixes (#182)

Rm cluster/ from bad rebase

Upgrade to 0.21.14

Upgrade to 0.22.0

chore(paradedb): bump version from 0.22.0 to 0.22.1

fix(monitoring): guard against nil pointer in pooler PodMonitor template (#185)

fix(monitoring): use template variable for Prometheus datasource UID (#186)

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

chore: Fix hardcoded dashboard panel (#187)

Upgrade to 0.22.3

Upgrade to 0.22.6

fix: resolve merge conflict markers in paradedb Chart.yaml (#189)

chore: bump ParadeDB to 0.23.0 (#190)

feat(monitoring): add pg_stat_activity long-running query instrumentation (#192)

chore: replace pg_cache_hit_ratio example with pg_database_size_bytes (#191)

fix(monitoring): name cluster PodMonitor after the cluster (#194)

fix(monitoring): exclude walsenders from long-running query metrics (#195)

ci: Use GitHub app instead of bot (#196)

ci: remove orphaned upstream workflows and fix gh CLI auth (#197)

feat(paradedb): expose logical replication slot failover config (#198)

Fix README rebase
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant